home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
296_01
/
ctocxx
< prev
next >
Wrap
Text File
|
1989-10-01
|
592b
|
28 lines
# Makefile for the ctocxx translator - Charlie Havener
HEADERS=ctocxx.h ytab.h
ytab.c: gram.y
yacc -d gram.y
ytab.obj: ytab.c
cl /Zi /Dbugprint /c ytab.c
lexyy.c: ctocxx.l
flex ctocxx.l
lexyy.obj: lexyy.c $(HEADERS)
cl /Zi /Dbugprint /c lexyy.c
symtab.obj: symtab.c $(HEADERS)
cl /Zi /Dbugprint /c symtab.c
ctocxx.obj: ctocxx.c $(HEADERS)
cl /Zi /Dbugprint /c ctocxx.c
subs.obj: subs.c $(HEADERS)
cl /Zi /Dbugprint /c subs.c
ctocxx.exe: ctocxx.obj lexyy.obj ytab.obj symtab.obj
cl /Zi /Dbugprint ctocxx.obj lexyy.obj subs.obj symtab.obj ytab.obj